From: Roger Pau Monné Date: Mon, 3 Feb 2020 12:06:19 +0000 (+0100) Subject: x86/tlb: fix NEED_FLUSH return type X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~763 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=4b84622d887def7c45e130a615e702e0200745c9;p=xen.git x86/tlb: fix NEED_FLUSH return type The returned type wants to be bool instead of int. No functional change intended. Signed-off-by: Roger Pau Monné Acked-by: Jan Beulich Reviewed-by: Wei Liu --- diff --git a/xen/include/asm-x86/flushtlb.h b/xen/include/asm-x86/flushtlb.h index 434821aaf3..2cfe4e6e97 100644 --- a/xen/include/asm-x86/flushtlb.h +++ b/xen/include/asm-x86/flushtlb.h @@ -42,7 +42,7 @@ static inline void page_set_tlbflush_timestamp(struct page_info *page) * @lastuse_stamp is a timestamp taken when the PFN we are testing was last * used for a purpose that may have caused the CPU's TLB to become tainted. */ -static inline int NEED_FLUSH(u32 cpu_stamp, u32 lastuse_stamp) +static inline bool NEED_FLUSH(u32 cpu_stamp, u32 lastuse_stamp) { u32 curr_time = tlbflush_current_time(); /*